home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / include / linux / bcd.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-12-24  |  195 b   |  10 lines

  1. #ifndef _BCD_H
  2. #define _BCD_H
  3.  
  4. #include <linux/compiler.h>
  5.  
  6. unsigned bcd2bin(unsigned char val) __attribute_const__;
  7. unsigned char bin2bcd(unsigned val) __attribute_const__;
  8.  
  9. #endif /* _BCD_H */
  10.